From: Alexandre Emsenhuber Date: Sat, 9 May 2009 14:19:58 +0000 (+0000) Subject: float -> double for the "Time (type)" test according to the PHP manual X-Git-Tag: 1.31.0-rc.0~41836 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=c2e0ebb590600100f9877cf3ea4c92d06c6f12a2;p=lhc%2Fweb%2Fwiklou.git float -> double for the "Time (type)" test according to the PHP manual --- diff --git a/t/inc/Global.t b/t/inc/Global.t index 28a662c2ee..976ea95583 100644 --- a/t/inc/Global.t +++ b/t/inc/Global.t @@ -46,7 +46,7 @@ is( wfQuotedPrintable( "\xc4\x88u legebla?", "UTF-8" ), "=?UTF-8?Q?=C4=88u=20legebla=3F?=", 'Quoted printable' ); $start = wfTime(); -is( gettype( $start ), 'float', 'Time (type)' ); +is( gettype( $start ), 'double', 'Time (type)' ); $end = wfTime(); cmp_ok( $end, '>', $start, 'Time (compare)' );